home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / lame_src / lame.bat < prev    next >
DOS Batch File  |  2000-01-01  |  931b  |  37 lines

  1. @echo off
  2. rem  ------------------------------------------
  3. rem  PURPOSE:
  4. rem  put this Batch-Command on your Desktop, 
  5. rem  so you can drag and drop wave files on it
  6. rem  and LAME will encode them to mp3 format.
  7. rem  NOTE:
  8. rem  DOS has only 8+3 file names!
  9. rem  ------------------------------------------
  10. rem                       C2000 Robert Hegemann
  11. rem                      Robert.Hegemann@gmx.de
  12. rem  ------------------------------------------
  13. rem  please set LAME and LAMEOPTS
  14. rem  LAME - where the executeable is
  15. rem  OPTS - options you like LAME to use
  16.  
  17.     set LAME=lame.exe
  18.     set OPTS=--preset cd
  19.  
  20. rem  ------------------------------------------
  21.  
  22.     set thecmd=%LAME% %OPTS%
  23. :processArgs
  24.     if "%1"=="" goto endmark
  25.     for %%f in (%1) do %thecmd% %%f
  26.     if errorlevel 1 goto errormark
  27.     shift
  28.     goto processArgs
  29. :errormark
  30.     echo.
  31.     echo.
  32.     echo ERROR processing %1
  33.     echo. 
  34. :endmark
  35. rem
  36. rem    finished
  37. rem